home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 February / SGI IRIX 6.5 Complementary Applications 2004 February.iso / dist / cde.idb / usr / dt / share / include / Xm / VaSimpleP.h.z / VaSimpleP.h
Encoding:
C/C++ Source or Header  |  2003-11-18  |  2.9 KB  |  101 lines

  1. /*
  2.  * VaSimpleP.h
  3.  *
  4.  * Copyright 2000, Silicon Graphics, Inc.
  5.  * ALL RIGHTS RESERVED
  6.  * 
  7.  * UNPUBLISHED -- Rights reserved under the copyright laws of the United
  8.  * States.   Use of a copyright notice is precautionary only and does not
  9.  * imply publication or disclosure.
  10.  *
  11.  * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
  12.  * Use, duplication or disclosure by the Government is subject to restrictions
  13.  * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
  14.  * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
  15.  * in similar or successor clauses in the FAR, or the DOD or NASA FAR
  16.  * Supplement.  Contractor/manufacturer is Silicon Graphics, Inc.,
  17.  * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
  18.  *
  19.  * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
  20.  * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
  21.  * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
  22.  * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
  23.  * GRAPHICS, INC.
  24.  */
  25. /* 
  26.  * @OSF_COPYRIGHT@
  27.  * (c) Copyright 1990, 1991, 1992, 1993, 1994 OPEN SOFTWARE FOUNDATION, INC.
  28.  * ALL RIGHTS RESERVED
  29.  *  
  30. */ 
  31. /*
  32.  * HISTORY
  33.  * Motif Release 1.2.5
  34. */
  35. /*   $XConsortium: VaSimpleP.h /main/cde1_maint/2 1995/08/18 19:32:25 drk $ */
  36. /*
  37. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  38. #ifndef _XmVaSimpleP_h
  39. #define _XmVaSimpleP_h
  40.  
  41. #include <Xm/XmP.h>
  42.  
  43. #ifdef _NO_PROTO
  44. # include <varargs.h>
  45. # define Va_start(a,b) va_start(a)
  46. #else
  47. # include <stdarg.h>
  48. # define Va_start(a,b) va_start(a,b)
  49. #endif
  50.  
  51.  
  52. #ifdef __cplusplus
  53. extern "C" {
  54. #endif
  55.  
  56. /* In R6, IntrinsicP.h also defines this type, so
  57.    we need to control its declaration in order to compile */
  58. #if (XtSpecificationRelease < 6)
  59. # ifdef sgi /* _TP_IRIX_{ */
  60. # else
  61. typedef struct _XtTypedArg {
  62.     String      name;
  63.     String      type;
  64.     XtArgVal    value;
  65.     int         size;
  66. } XtTypedArg;
  67. # endif /* _TP_IRIX_} */
  68.  
  69. typedef struct _XtTypedArg* XtTypedArgList;
  70. #endif
  71.  
  72. #define StringToName(string) XrmStringToName(string)
  73.  
  74.  
  75. /********  Private Function Declarations  ********/
  76. #ifdef _NO_PROTO
  77. extern void _XmCountVaList() ;
  78. extern void _XmVaToTypedArgList() ;
  79. #else
  80. extern void _XmCountVaList( 
  81.                         va_list var,
  82.                         int *button_count,
  83.                         int *args_count,
  84.                         int *typed_count,
  85.                         int *total_count) ;
  86. extern void _XmVaToTypedArgList( 
  87.                         va_list var,
  88.                         int max_count,
  89.                         XtTypedArgList *args_return,
  90.                         Cardinal *num_args_return) ;
  91. #endif /* _NO_PROTO */
  92. /********  End Private Function Declarations  ********/
  93.  
  94.  
  95. #ifdef __cplusplus
  96. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  97. #endif
  98.  
  99. #endif /* _XmVaSimpleP_h */
  100. /* DON'T ADD ANYTHING AFTER THIS #endif */
  101.